3. Attributes

Attributes are the properties of the tags used to format the output or content inside the tags.

The style Attribute

specify the styling of an element, like color, font, size etc.

Syntax:

<p style="color:blue;text-align:center;font:arial,size:15">Text</p>

This should be green and centred.

The title Attribute

Used with <p> tag.
Value of the title attribute is displayed as a tooltip when you mouse over the paragraph.

Syntax:

<p title="Text">Text</p>

d55c4a64c2521b634a015d9fdb31ad25.png

The lang Attribute

Declares language of the document in <html> tag.

Syntax:

<html lang="en-US">

en-US is the language code meaning English(en) as used in United States(US).

2e545edb972c98e17199f73eee720316.png